3
How do I change the control's font

with thisform.Slider1
	.ThumbSize = 32
	.Font.Name = "Tahoma"
	.ForeColor = RGB(255,0,0)
	.Object.Caption(256) = "thumb"
endwith
2
How can I change the control's foreground color

with thisform.Slider1
	.ForeColor = RGB(255,0,0)
	.ThumbSize = 32
	.Object.Caption(256) = "thumb"
endwith
1
How can I change the control's background color

with thisform.Slider1
	.BackColor = RGB(0,255,0)
endwith